home *** CD-ROM | disk | FTP | other *** search
/ The World of Computer Software / The World of Computer Software.iso / tk2fb300.zip / TIC2FB.DOC < prev    next >
Text File  |  1993-01-02  |  5KB  |  143 lines

  1.  
  2.  
  3.  
  4.                      Tic2FB - Version 3.00 by Mark R. Evans
  5.                              Bound for OS/2 and DOS
  6.  
  7.                      A Maximus-CBCS FB.EXE to TIC Interface
  8.                              for OS/2 v1.x and above 
  9.                             and MS-DOS v3.x and above
  10.  
  11.                                 January 2, 1993
  12.  
  13.                         Copyright (c) 1993 Mark R. Evans
  14.                               All Rights Reserved
  15.  
  16.  
  17.  
  18.      LICENSE
  19.      -------
  20.      Permission granted to use this program, and distribute it to others.
  21.      The original documentation and program must be distributed in
  22.      unmodified form.  For information, contact the author at FidoNet
  23.      1:382/90.0, or P. O. Box 163611, Austin, TX 78716, USA.
  24.  
  25.      WARRANTY AND STATEMENT OF LIABILITY
  26.      -----------------------------------
  27.      Tic2FB does not carry any warranty of any kind, including that of
  28.      fitness for any particular purpose.  You use Tic2FB at your own risk.
  29.      If it causes damage to your hard disk, your life, your marriage, etc.,
  30.      you take full responsibility.  You acknowledge this in full by using
  31.      Tic2FB.  Tic2FB is not licensed for legal use in any jurisdiction
  32.      where local or regional law renders this Warranty and Statement of
  33.      Liability invalid.
  34.  
  35.      COST
  36.      ----
  37.      Tic2FB is free.  Use it for free, distribute it for free.  You may not
  38.      charge any fee for distribution of Tic2FB.
  39.  
  40.      DESCRIPTION
  41.      -----------
  42.      Tic2FB provides a link between Maximus-CBCS v2.x and TICK written by
  43.      Barry Gellar.  Tic2FB will automatically create a batch file to run
  44.      Maximus' FB.EXE on all the areas that have received new files via
  45.      TICK.  Unlike other interfaces, you do not need to create an external
  46.      translation file showing how Maximus' file areas correspond to TICK's
  47.      areas.  Tic2FB will look at your AREA.DAT and TIC.CFG and determine
  48.      what areas belong to each other.  This means you can update either
  49.      your Max configs and/or TICK configs without having to worry about
  50.      updating anything for Tic2FB.
  51.  
  52.      Tic2FB is a 'bound' application so it will run under OS/2 or DOS!
  53.  
  54.      USAGE
  55.      -----
  56.      You must run Tic2FB _BEFORE_ you run TICK.  Tic2FB will read the .tic
  57.      files in your inbound directory and create the batch file to run
  58.      FB.EXE.  Tic2FB supports the following command line options:
  59.  
  60.      Usage: TIC2FB  -a[area.dat] -b[batchfilename] -f[fb.exe] -i[.tics]
  61.                     -l[LogFileName] -t[tic.cf]
  62.  
  63.           -a   Complete Path and FileName of Area.Dat.  If this is not
  64.                specified, Tic2FB will look in the current directory.
  65.  
  66.           -b   Path/Name of BatchFile to create.  If you DO NOT use the -b
  67.                command line switch, Tic2FB will spawn (call FB.EXE)
  68.                internally and not create a batch file.  This is very useful
  69.                when running under OS/2.
  70.  
  71.           -f   Complete Path and FileName to FB.EXE.  If this is not
  72.                specified, Tic2FB will use FB.EXE.
  73.  
  74.           -i   Path to incoming .tic's.  This option is REQUIRED!  You must
  75.                tell Tic2FB where your inbound .TIC files are located.
  76.  
  77.           -l   Create a log file showing activity. Default TIC2FB.LOG.  If
  78.                you just specify -l, Tic2FB will create a log file in the
  79.                current directory called Tic2FB.LOG.  You can optionally
  80.                specify a path with a filename for Tic2FB to use as a log
  81.                file.
  82.  
  83.           -t   Complete Path and FileName to TIC.CFG.  If you do not
  84.                specify the -t switch, Tic2FB will look for TIC.CFG in the
  85.                current directory.
  86.  
  87.      EXAMPLES
  88.      --------
  89.      Tic2FB    -iD:\Inbound -aC:\Max\Area.Dat -bC:\Max\Run_Fb.Bat
  90.                -fC:\Max\Fb.exe -lC:\Max\Logs\Tic2Fb.Log -tC:\Tick\Tic.Cfg
  91.  
  92.      This example will look for inbound .TIC's in the D:\Inbound directory,
  93.      use Max's AREA.DAT in the C:\Max directory, create a batch file called
  94.      RUN_FB.BAT in the C:\Max directory, use C:\Max\FB.EXE as the command
  95.      to execute, create a log file called Tic2Fb.Log in the C:\Max\Logs
  96.      directory and use the TIC.CFG file in the C:\Tick directory.
  97.  
  98.      EXAMPLE BATCH FILE
  99.      ------------------
  100.      ------- ProcTic.Bat ---------
  101.      @echo off 
  102.      
  103.      :TickTest
  104.          rem ....Testing for Tic Files
  105.          if not exist d:\msg\protin\*.tic goto DoNothing
  106.      
  107.      rem - Run Tic2FB to build FBRUN.BAT
  108.      
  109.      Tic2Fb -aC:\Max\Area.Dat -bc:\Max\FbRun.Bat -iD:\Msg\Protin 
  110.             -tC:\Max\Tick\Tic.Cfg
  111.  
  112.      rem - Let RAID announce the new files to our LOCALFILE echo...
  113.      rem - Let RAID create any new areas sent from our uplink
  114.       
  115.      c:
  116.      cd\Max\Raid
  117.      Raid Announce
  118.      Raid AutoCreate
  119.  
  120.      rem - Let TICK process the incoming files...
  121.      c:
  122.      Cd\Max\Tick
  123.      Tick >>c:\Max\Logs\Tick.Log
  124.  
  125.      rem - Call FBRUN to update Maximus area index file...
  126.  
  127.      c:
  128.      cd\Max
  129.      Call FbRun
  130.  
  131.      rem - We done!
  132.  
  133.      :DoNothing
  134.      c:
  135.      Cd\Max
  136.      --------- EOF ---------------
  137.  
  138.      SUPPORT
  139.      -------
  140.      You may contact Mark Evans, the author of Tic2FB, at FidoNet 1:382/90.
  141.      The author of TICK, and the author of Maximus WILL NOT provide any
  142.      support for Tic2FB.
  143.